home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / drivers / video / Kconfig next >
Encoding:
Text File  |  2009-09-09  |  64.8 KB  |  2,136 lines

  1. #
  2. # Video configuration
  3. #
  4.  
  5. menu "Graphics support"
  6.     depends on HAS_IOMEM
  7.  
  8. source "drivers/char/agp/Kconfig"
  9.  
  10. source "drivers/gpu/drm/Kconfig"
  11.  
  12. config VGASTATE
  13.        tristate
  14.        default n
  15.  
  16. config VIDEO_OUTPUT_CONTROL
  17.     tristate "Lowlevel video output switch controls"
  18.     help
  19.       This framework adds support for low-level control of the video 
  20.       output switch.
  21.  
  22. menuconfig FB
  23.     tristate "Support for frame buffer devices"
  24.     ---help---
  25.       The frame buffer device provides an abstraction for the graphics
  26.       hardware. It represents the frame buffer of some video hardware and
  27.       allows application software to access the graphics hardware through
  28.       a well-defined interface, so the software doesn't need to know
  29.       anything about the low-level (hardware register) stuff.
  30.  
  31.       Frame buffer devices work identically across the different
  32.       architectures supported by Linux and make the implementation of
  33.       application programs easier and more portable; at this point, an X
  34.       server exists which uses the frame buffer device exclusively.
  35.       On several non-X86 architectures, the frame buffer device is the
  36.       only way to use the graphics hardware.
  37.  
  38.       The device is accessed through special device nodes, usually located
  39.       in the /dev directory, i.e. /dev/fb*.
  40.  
  41.       You need an utility program called fbset to make full use of frame
  42.       buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  43.       and the Framebuffer-HOWTO at
  44.       <http://www.tahallah.demon.co.uk/programming/prog.html> for more
  45.       information.
  46.  
  47.       Say Y here and to the driver for your graphics board below if you
  48.       are compiling a kernel for a non-x86 architecture.
  49.  
  50.       If you are compiling for the x86 architecture, you can say Y if you
  51.       want to play with it, but it is not essential. Please note that
  52.       running graphical applications that directly touch the hardware
  53.       (e.g. an accelerated X server) and that are not frame buffer
  54.       device-aware may cause unexpected results. If unsure, say N.
  55.  
  56. config FIRMWARE_EDID
  57.        bool "Enable firmware EDID"
  58.        depends on FB
  59.        default n
  60.        ---help---
  61.          This enables access to the EDID transferred from the firmware.
  62.      On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  63.      transfers do not work for your driver and if you are using
  64.      nvidiafb, i810fb or savagefb.
  65.  
  66.      In general, choosing Y for this option is safe.  If you
  67.      experience extremely long delays while booting before you get
  68.      something on your display, try setting this to N.  Matrox cards in
  69.      combination with certain motherboards and monitors are known to
  70.      suffer from this problem.
  71.  
  72. config FB_DDC
  73.        tristate
  74.        depends on FB
  75.        select I2C_ALGOBIT
  76.        select I2C
  77.        default n
  78.  
  79. config FB_BOOT_VESA_SUPPORT
  80.     bool
  81.     depends on FB
  82.     default n
  83.     ---help---
  84.       If true, at least one selected framebuffer driver can take advantage
  85.       of VESA video modes set at an early boot stage via the vga= parameter.
  86.  
  87. config FB_CFB_FILLRECT
  88.     tristate
  89.     depends on FB
  90.     default n
  91.     ---help---
  92.       Include the cfb_fillrect function for generic software rectangle
  93.       filling. This is used by drivers that don't provide their own
  94.       (accelerated) version.
  95.  
  96. config FB_CFB_COPYAREA
  97.     tristate
  98.     depends on FB
  99.     default n
  100.     ---help---
  101.       Include the cfb_copyarea function for generic software area copying.
  102.       This is used by drivers that don't provide their own (accelerated)
  103.       version.
  104.  
  105. config FB_CFB_IMAGEBLIT
  106.     tristate
  107.     depends on FB
  108.     default n
  109.     ---help---
  110.       Include the cfb_imageblit function for generic software image
  111.       blitting. This is used by drivers that don't provide their own
  112.       (accelerated) version.
  113.  
  114. config FB_CFB_REV_PIXELS_IN_BYTE
  115.     bool
  116.     depends on FB
  117.     default n
  118.     ---help---
  119.       Allow generic frame-buffer functions to work on displays with 1, 2
  120.       and 4 bits per pixel depths which has opposite order of pixels in
  121.       byte order to bytes in long order.
  122.  
  123. config FB_SYS_FILLRECT
  124.     tristate
  125.     depends on FB
  126.     default n
  127.     ---help---
  128.       Include the sys_fillrect function for generic software rectangle
  129.       filling. This is used by drivers that don't provide their own
  130.       (accelerated) version and the framebuffer is in system RAM.
  131.  
  132. config FB_SYS_COPYAREA
  133.     tristate
  134.     depends on FB
  135.     default n
  136.     ---help---
  137.       Include the sys_copyarea function for generic software area copying.
  138.       This is used by drivers that don't provide their own (accelerated)
  139.       version and the framebuffer is in system RAM.
  140.  
  141. config FB_SYS_IMAGEBLIT
  142.     tristate
  143.     depends on FB
  144.     default n
  145.     ---help---
  146.       Include the sys_imageblit function for generic software image
  147.       blitting. This is used by drivers that don't provide their own
  148.       (accelerated) version and the framebuffer is in system RAM.
  149.  
  150. menuconfig FB_FOREIGN_ENDIAN
  151.     bool "Framebuffer foreign endianness support"
  152.     depends on FB
  153.     ---help---
  154.       This menu will let you enable support for the framebuffers with
  155.       non-native endianness (e.g. Little-Endian framebuffer on a
  156.       Big-Endian machine). Most probably you don't have such hardware,
  157.       so it's safe to say "n" here.
  158.  
  159. choice
  160.     prompt "Choice endianness support"
  161.     depends on FB_FOREIGN_ENDIAN
  162.  
  163. config FB_BOTH_ENDIAN
  164.     bool "Support for Big- and Little-Endian framebuffers"
  165.  
  166. config FB_BIG_ENDIAN
  167.     bool "Support for Big-Endian framebuffers only"
  168.  
  169. config FB_LITTLE_ENDIAN
  170.     bool "Support for Little-Endian framebuffers only"
  171.  
  172. endchoice
  173.  
  174. config FB_SYS_FOPS
  175.        tristate
  176.        depends on FB
  177.        default n
  178.  
  179. config FB_DEFERRED_IO
  180.     bool
  181.     depends on FB
  182.  
  183. config FB_HECUBA
  184.     tristate
  185.     depends on FB
  186.     depends on FB_DEFERRED_IO
  187.  
  188. config FB_SVGALIB
  189.     tristate
  190.     depends on FB
  191.     default n
  192.     ---help---
  193.       Common utility functions useful to fbdev drivers of VGA-based
  194.       cards.
  195.  
  196. config FB_MACMODES
  197.        tristate
  198.        depends on FB
  199.        default n
  200.  
  201. config FB_BACKLIGHT
  202.     bool
  203.     depends on FB
  204.     select BACKLIGHT_LCD_SUPPORT
  205.     select BACKLIGHT_CLASS_DEVICE
  206.     default n
  207.  
  208. config FB_MODE_HELPERS
  209.         bool "Enable Video Mode Handling Helpers"
  210.         depends on FB
  211.     default n
  212.     ---help---
  213.       This enables functions for handling video modes using the
  214.       Generalized Timing Formula and the EDID parser. A few drivers rely
  215.           on this feature such as the radeonfb, rivafb, and the i810fb. If
  216.       your driver does not take advantage of this feature, choosing Y will
  217.       just increase the kernel size by about 5K.
  218.  
  219. config FB_TILEBLITTING
  220.        bool "Enable Tile Blitting Support"
  221.        depends on FB
  222.        default n
  223.        ---help---
  224.          This enables tile blitting.  Tile blitting is a drawing technique
  225.      where the screen is divided into rectangular sections (tiles), whereas
  226.      the standard blitting divides the screen into pixels. Because the
  227.      default drawing element is a tile, drawing functions will be passed
  228.      parameters in terms of number of tiles instead of number of pixels.
  229.      For example, to draw a single character, instead of using bitmaps,
  230.      an index to an array of bitmaps will be used.  To clear or move a
  231.      rectangular section of a screen, the rectangle will be described in
  232.      terms of number of tiles in the x- and y-axis.
  233.  
  234.      This is particularly important to one driver, matroxfb.  If
  235.      unsure, say N.
  236.  
  237. comment "Frame buffer hardware drivers"
  238.     depends on FB
  239.  
  240. config FB_CIRRUS
  241.     tristate "Cirrus Logic support"
  242.     depends on FB && (ZORRO || PCI)
  243.     select FB_CFB_FILLRECT
  244.     select FB_CFB_COPYAREA
  245.     select FB_CFB_IMAGEBLIT
  246.     ---help---
  247.       This enables support for Cirrus Logic GD542x/543x based boards on
  248.       Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  249.  
  250.       If you have a PCI-based system, this enables support for these
  251.       chips: GD-543x, GD-544x, GD-5480.
  252.  
  253.       Please read the file <file:Documentation/fb/cirrusfb.txt>.
  254.  
  255.       Say N unless you have such a graphics board or plan to get one
  256.       before you next recompile the kernel.
  257.  
  258. config FB_PM2
  259.     tristate "Permedia2 support"
  260.     depends on FB && ((AMIGA && BROKEN) || PCI)
  261.     select FB_CFB_FILLRECT
  262.     select FB_CFB_COPYAREA
  263.     select FB_CFB_IMAGEBLIT
  264.     help
  265.       This is the frame buffer device driver for cards based on
  266.       the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
  267.       The driver was tested on the following cards:
  268.         Diamond FireGL 1000 PRO AGP
  269.         ELSA Gloria Synergy PCI
  270.         Appian Jeronimo PRO (both heads) PCI
  271.         3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
  272.         Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
  273.         ASK Graphic Blaster Exxtreme AGP
  274.  
  275.       To compile this driver as a module, choose M here: the
  276.       module will be called pm2fb.
  277.  
  278. config FB_PM2_FIFO_DISCONNECT
  279.     bool "enable FIFO disconnect feature"
  280.     depends on FB_PM2 && PCI
  281.     help
  282.       Support the Permedia2 FIFO disconnect feature.
  283.  
  284. config FB_ARMCLCD
  285.     tristate "ARM PrimeCell PL110 support"
  286.     depends on FB && ARM && ARM_AMBA
  287.     select FB_CFB_FILLRECT
  288.     select FB_CFB_COPYAREA
  289.     select FB_CFB_IMAGEBLIT
  290.     help
  291.       This framebuffer device driver is for the ARM PrimeCell PL110
  292.       Colour LCD controller.  ARM PrimeCells provide the building
  293.       blocks for System on a Chip devices.
  294.  
  295.       If you want to compile this as a module (=code which can be
  296.       inserted into and removed from the running kernel), say M
  297.       here and read <file:Documentation/kbuild/modules.txt>.  The module
  298.       will be called amba-clcd.
  299.  
  300. choice
  301.  
  302.     depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
  303.     prompt "LCD Panel"
  304.     default FB_ARMCLCD_SHARP_LQ035Q7DB02
  305.  
  306. config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
  307.     bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
  308.     help
  309.       This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
  310.       color QVGA, HRTFT panel.  The LogicPD device includes
  311.       an integrated HRTFT controller IC.
  312.       The native resolution is 240x320.
  313.  
  314. config FB_ARMCLCD_SHARP_LQ057Q3DC02
  315.     bool "LogicPD LCD 5.7\" QVGA"
  316.     help
  317.       This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
  318.       color QVGA, TFT panel.  The LogicPD device includes an
  319.       The native resolution is 320x240.
  320.  
  321. config FB_ARMCLCD_SHARP_LQ64D343
  322.     bool "LogicPD LCD 6.4\" VGA"
  323.     help
  324.       This is an implementation of the Sharp LQ64D343, a 6.4"
  325.       color VGA, TFT panel.  The LogicPD device includes an
  326.       The native resolution is 640x480.
  327.  
  328. config FB_ARMCLCD_SHARP_LQ10D368
  329.     bool "LogicPD LCD 10.4\" VGA"
  330.     help
  331.       This is an implementation of the Sharp LQ10D368, a 10.4"
  332.       color VGA, TFT panel.  The LogicPD device includes an
  333.       The native resolution is 640x480.
  334.  
  335.  
  336. config FB_ARMCLCD_SHARP_LQ121S1DG41
  337.     bool "LogicPD LCD 12.1\" SVGA"
  338.     help
  339.       This is an implementation of the Sharp LQ121S1DG41, a 12.1"
  340.       color SVGA, TFT panel.  The LogicPD device includes an
  341.       The native resolution is 800x600.
  342.  
  343.       This panel requires a clock rate may be an integer fraction
  344.       of the base LCDCLK frequency.  The driver will select the
  345.       highest frequency available that is lower than the maximum
  346.       allowed.  The panel may flicker if the clock rate is
  347.       slower than the recommended minimum.
  348.  
  349. config FB_ARMCLCD_AUO_A070VW01_WIDE
  350.     bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
  351.     help
  352.       This is an implementation of the AU Optronics, a 7.0"
  353.       WIDE Color.  The native resolution is 234x480.
  354.  
  355. config FB_ARMCLCD_HITACHI
  356.     bool "Hitachi Wide Screen 800x480"
  357.     help
  358.       This is an implementation of the Hitachi 800x480.
  359.  
  360. endchoice
  361.  
  362.  
  363. config FB_ACORN
  364.     bool "Acorn VIDC support"
  365.     depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
  366.     select FB_CFB_FILLRECT
  367.     select FB_CFB_COPYAREA
  368.     select FB_CFB_IMAGEBLIT
  369.     help
  370.       This is the frame buffer device driver for the Acorn VIDC graphics
  371.       hardware found in Acorn RISC PCs and other ARM-based machines.  If
  372.       unsure, say N.
  373.  
  374. config FB_CLPS711X
  375.     bool "CLPS711X LCD support"
  376.     depends on (FB = y) && ARM && ARCH_CLPS711X
  377.     select FB_CFB_FILLRECT
  378.     select FB_CFB_COPYAREA
  379.     select FB_CFB_IMAGEBLIT
  380.     help
  381.       Say Y to enable the Framebuffer driver for the CLPS7111 and
  382.       EP7212 processors.
  383.  
  384. if ARCH_MXC
  385. source "drivers/video/mxc/Kconfig"
  386. endif
  387.  
  388. config FB_SA1100
  389.     bool "SA-1100 LCD support"
  390.     depends on (FB = y) && ARM && ARCH_SA1100
  391.     select FB_CFB_FILLRECT
  392.     select FB_CFB_COPYAREA
  393.     select FB_CFB_IMAGEBLIT
  394.     help
  395.       This is a framebuffer device for the SA-1100 LCD Controller.
  396.       See <http://www.linux-fbdev.org/> for information on framebuffer
  397.       devices.
  398.  
  399.       If you plan to use the LCD display with your SA-1100 system, say
  400.       Y here.
  401.  
  402. config FB_IMX
  403.     tristate "Motorola i.MX LCD support"
  404.     depends on FB && ARM && ARCH_IMX
  405.     select FB_CFB_FILLRECT
  406.     select FB_CFB_COPYAREA
  407.     select FB_CFB_IMAGEBLIT
  408.  
  409. config FB_CYBER2000
  410.     tristate "CyberPro 2000/2010/5000 support"
  411.     depends on FB && PCI && (BROKEN || !SPARC64)
  412.     select FB_CFB_FILLRECT
  413.     select FB_CFB_COPYAREA
  414.     select FB_CFB_IMAGEBLIT
  415.     help
  416.       This enables support for the Integraphics CyberPro 20x0 and 5000
  417.       VGA chips used in the Rebel.com Netwinder and other machines.
  418.       Say Y if you have a NetWinder or a graphics card containing this
  419.       device, otherwise say N.
  420.  
  421. config FB_APOLLO
  422.     bool
  423.     depends on (FB = y) && APOLLO
  424.     default y
  425.     select FB_CFB_FILLRECT
  426.     select FB_CFB_IMAGEBLIT
  427.  
  428. config FB_Q40
  429.     bool
  430.     depends on (FB = y) && Q40
  431.     default y
  432.     select FB_CFB_FILLRECT
  433.     select FB_CFB_COPYAREA
  434.     select FB_CFB_IMAGEBLIT
  435.  
  436. config FB_AMIGA
  437.     tristate "Amiga native chipset support"
  438.     depends on FB && AMIGA
  439.     help
  440.       This is the frame buffer device driver for the builtin graphics
  441.       chipset found in Amigas.
  442.  
  443.       To compile this driver as a module, choose M here: the
  444.       module will be called amifb.
  445.  
  446. config FB_AMIGA_OCS
  447.     bool "Amiga OCS chipset support"
  448.     depends on FB_AMIGA
  449.     help
  450.       This enables support for the original Agnus and Denise video chips,
  451.       found in the Amiga 1000 and most A500's and A2000's. If you intend
  452.       to run Linux on any of these systems, say Y; otherwise say N.
  453.  
  454. config FB_AMIGA_ECS
  455.     bool "Amiga ECS chipset support"
  456.     depends on FB_AMIGA
  457.     help
  458.       This enables support for the Enhanced Chip Set, found in later
  459.       A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  460.       you intend to run Linux on any of these systems, say Y; otherwise
  461.       say N.
  462.  
  463. config FB_AMIGA_AGA
  464.     bool "Amiga AGA chipset support"
  465.     depends on FB_AMIGA
  466.     help
  467.       This enables support for the Advanced Graphics Architecture (also
  468.       known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  469.       and CD32. If you intend to run Linux on any of these systems, say Y;
  470.       otherwise say N.
  471.  
  472. config FB_FM2
  473.     bool "Amiga FrameMaster II/Rainbow II support"
  474.     depends on (FB = y) && ZORRO
  475.     select FB_CFB_FILLRECT
  476.     select FB_CFB_COPYAREA
  477.     select FB_CFB_IMAGEBLIT
  478.     help
  479.       This is the frame buffer device driver for the Amiga FrameMaster
  480.       card from BSC (exhibited 1992 but not shipped as a CBM product).
  481.  
  482. config FB_ARC
  483.     tristate "Arc Monochrome LCD board support"
  484.     depends on FB && X86
  485.     select FB_SYS_FILLRECT
  486.     select FB_SYS_COPYAREA
  487.     select FB_SYS_IMAGEBLIT
  488.     select FB_SYS_FOPS
  489.     help
  490.       This enables support for the Arc Monochrome LCD board. The board
  491.       is based on the KS-108 lcd controller and is typically a matrix
  492.       of 2*n chips. This driver was tested with a 128x64 panel. This
  493.       driver supports it for use with x86 SBCs through a 16 bit GPIO
  494.       interface (8 bit data, 8 bit control). If you anticipate using
  495.       this driver, say Y or M; otherwise say N. You must specify the
  496.       GPIO IO address to be used for setting control and data.
  497.  
  498. config FB_ATARI
  499.     bool "Atari native chipset support"
  500.     depends on (FB = y) && ATARI
  501.     select FB_CFB_FILLRECT
  502.     select FB_CFB_COPYAREA
  503.     select FB_CFB_IMAGEBLIT
  504.     help
  505.       This is the frame buffer device driver for the builtin graphics
  506.       chipset found in Ataris.
  507.  
  508. config FB_OF
  509.     bool "Open Firmware frame buffer device support"
  510.     depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
  511.     select FB_CFB_FILLRECT
  512.     select FB_CFB_COPYAREA
  513.     select FB_CFB_IMAGEBLIT
  514.     select FB_MACMODES
  515.     help
  516.       Say Y if you want support with Open Firmware for your graphics
  517.       board.
  518.  
  519. config FB_CONTROL
  520.     bool "Apple \"control\" display support"
  521.     depends on (FB = y) && PPC_PMAC && PPC32
  522.     select FB_CFB_FILLRECT
  523.     select FB_CFB_COPYAREA
  524.     select FB_CFB_IMAGEBLIT
  525.     select FB_MACMODES
  526.     help
  527.       This driver supports a frame buffer for the graphics adapter in the
  528.       Power Macintosh 7300 and others.
  529.  
  530. config FB_PLATINUM
  531.     bool "Apple \"platinum\" display support"
  532.     depends on (FB = y) && PPC_PMAC && PPC32
  533.     select FB_CFB_FILLRECT
  534.     select FB_CFB_COPYAREA
  535.     select FB_CFB_IMAGEBLIT
  536.     select FB_MACMODES
  537.     help
  538.       This driver supports a frame buffer for the "platinum" graphics
  539.       adapter in some Power Macintoshes.
  540.  
  541. config FB_VALKYRIE
  542.     bool "Apple \"valkyrie\" display support"
  543.     depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
  544.     select FB_CFB_FILLRECT
  545.     select FB_CFB_COPYAREA
  546.     select FB_CFB_IMAGEBLIT
  547.     select FB_MACMODES
  548.     help
  549.       This driver supports a frame buffer for the "valkyrie" graphics
  550.       adapter in some Power Macintoshes.
  551.  
  552. config FB_CT65550
  553.     bool "Chips 65550 display support"
  554.     depends on (FB = y) && PPC32 && PCI
  555.     select FB_CFB_FILLRECT
  556.     select FB_CFB_COPYAREA
  557.     select FB_CFB_IMAGEBLIT
  558.     help
  559.       This is the frame buffer device driver for the Chips & Technologies
  560.       65550 graphics chip in PowerBooks.
  561.  
  562. config FB_ASILIANT
  563.     bool "Asiliant (Chips) 69000 display support"
  564.     depends on (FB = y) && PCI
  565.     select FB_CFB_FILLRECT
  566.     select FB_CFB_COPYAREA
  567.     select FB_CFB_IMAGEBLIT
  568.     help
  569.       This is the frame buffer device driver for the Asiliant 69030 chipset
  570.  
  571. config FB_IMSTT
  572.     bool "IMS Twin Turbo display support"
  573.     depends on (FB = y) && PCI
  574.     select FB_CFB_IMAGEBLIT
  575.     select FB_MACMODES if PPC
  576.     help
  577.       The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  578.       many Macintosh and compatible computers.
  579.  
  580. config FB_VGA16
  581.     tristate "VGA 16-color graphics support"
  582.     depends on FB && (X86 || PPC)
  583.     select FB_CFB_FILLRECT
  584.     select FB_CFB_COPYAREA
  585.     select FB_CFB_IMAGEBLIT
  586.     select VGASTATE
  587.     select FONT_8x16 if FRAMEBUFFER_CONSOLE
  588.     help
  589.       This is the frame buffer device driver for VGA 16 color graphic
  590.       cards. Say Y if you have such a card.
  591.  
  592.       To compile this driver as a module, choose M here: the
  593.       module will be called vga16fb.
  594.  
  595. config FB_BF54X_LQ043
  596.     tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
  597.     depends on FB && (BF54x) && !BF542
  598.     select FB_CFB_FILLRECT
  599.     select FB_CFB_COPYAREA
  600.     select FB_CFB_IMAGEBLIT
  601.     help
  602.      This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
  603.  
  604. config FB_BFIN_T350MCQB
  605.     tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
  606.     depends on FB && BLACKFIN
  607.     select BFIN_GPTIMERS
  608.     select FB_CFB_FILLRECT
  609.     select FB_CFB_COPYAREA
  610.     select FB_CFB_IMAGEBLIT
  611.     help
  612.      This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
  613.      This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
  614.      It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
  615.  
  616.  
  617. config FB_STI
  618.     tristate "HP STI frame buffer device support"
  619.     depends on FB && PARISC
  620.     select FB_CFB_FILLRECT
  621.     select FB_CFB_COPYAREA
  622.     select FB_CFB_IMAGEBLIT
  623.     default y
  624.     ---help---
  625.       STI refers to the HP "Standard Text Interface" which is a set of
  626.       BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  627.       Enabling this option will implement the linux framebuffer device
  628.       using calls to the STI BIOS routines for initialisation.
  629.     
  630.       If you enable this option, you will get a planar framebuffer device
  631.       /dev/fb which will work on the most common HP graphic cards of the
  632.       NGLE family, including the artist chips (in the 7xx and Bxxx series),
  633.       HCRX, HCRX24, CRX, CRX24 and VisEG series.
  634.  
  635.       It is safe to enable this option, so you should probably say "Y".
  636.  
  637. config FB_MAC
  638.     bool "Generic Macintosh display support"
  639.     depends on (FB = y) && MAC
  640.     select FB_CFB_FILLRECT
  641.     select FB_CFB_COPYAREA
  642.     select FB_CFB_IMAGEBLIT
  643.     select FB_MACMODES
  644.  
  645. config FB_HP300
  646.     bool
  647.     depends on (FB = y) && DIO
  648.     select FB_CFB_IMAGEBLIT
  649.     default y
  650.  
  651. config FB_TGA
  652.     tristate "TGA/SFB+ framebuffer support"
  653.     depends on FB && (ALPHA || TC)
  654.     select FB_CFB_FILLRECT
  655.     select FB_CFB_COPYAREA
  656.     select FB_CFB_IMAGEBLIT
  657.     select BITREVERSE
  658.     ---help---
  659.       This is the frame buffer device driver for generic TGA and SFB+
  660.       graphic cards.  These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  661.       also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  662.       TURBOchannel cards, also known as PMAGD-A, -B and -C.
  663.  
  664.       Due to hardware limitations ZLX-E2 and E3 cards are not supported
  665.       for DECstation 5000/200 systems.  Additionally due to firmware
  666.       limitations these cards may cause troubles with booting DECstation
  667.       5000/240 and /260 systems, but are fully supported under Linux if
  668.       you manage to get it going. ;-)
  669.  
  670.       Say Y if you have one of those.
  671.  
  672. config FB_UVESA
  673.     tristate "Userspace VESA VGA graphics support"
  674.     depends on FB && CONNECTOR
  675.     select FB_CFB_FILLRECT
  676.     select FB_CFB_COPYAREA
  677.     select FB_CFB_IMAGEBLIT
  678.     select FB_MODE_HELPERS
  679.     help
  680.       This is the frame buffer driver for generic VBE 2.0 compliant
  681.       graphic cards. It can also take advantage of VBE 3.0 features,
  682.       such as refresh rate adjustment.
  683.  
  684.       This driver generally provides more features than vesafb but
  685.       requires a userspace helper application called 'v86d'. See
  686.       <file:Documentation/fb/uvesafb.txt> for more information.
  687.  
  688.       If unsure, say N.
  689.  
  690. config FB_VESA
  691.     tristate "VESA VGA graphics support"
  692.     depends on FB && X86
  693.     select FB_CFB_FILLRECT
  694.     select FB_CFB_COPYAREA
  695.     select FB_CFB_IMAGEBLIT
  696.     select FB_BOOT_VESA_SUPPORT
  697.     help
  698.       This is the frame buffer device driver for generic VESA 2.0
  699.       compliant graphic cards. The older VESA 1.2 cards are not supported.
  700.       You will get a boot time penguin logo at no additional cost. Please
  701.       read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  702.  
  703. config FB_EFI
  704.     bool "EFI-based Framebuffer Support"
  705.     depends on (FB = y) && X86 && EFI
  706.     select FB_CFB_FILLRECT
  707.     select FB_CFB_COPYAREA
  708.     select FB_CFB_IMAGEBLIT
  709.     help
  710.       This is the EFI frame buffer device driver. If the firmware on
  711.       your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
  712.       using the EFI framebuffer as your console.
  713.  
  714. config FB_N411
  715.        tristate "N411 Apollo/Hecuba devkit support"
  716.        depends on FB && X86 && MMU
  717.        select FB_SYS_FILLRECT
  718.        select FB_SYS_COPYAREA
  719.        select FB_SYS_IMAGEBLIT
  720.        select FB_SYS_FOPS
  721.        select FB_DEFERRED_IO
  722.        select FB_HECUBA
  723.        help
  724.          This enables support for the Apollo display controller in its
  725.          Hecuba form using the n411 devkit.
  726.  
  727. config FB_HGA
  728.     tristate "Hercules mono graphics support"
  729.     depends on FB && X86
  730.     select FB_CFB_FILLRECT
  731.     select FB_CFB_COPYAREA
  732.     select FB_CFB_IMAGEBLIT
  733.     help
  734.       Say Y here if you have a Hercules mono graphics card.
  735.  
  736.       To compile this driver as a module, choose M here: the
  737.       module will be called hgafb.
  738.  
  739.       As this card technology is 15 years old, most people will answer N
  740.       here.
  741.  
  742. config FB_HGA_ACCEL
  743.     bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  744.     depends on FB_HGA && EXPERIMENTAL
  745.     ---help---
  746.     This will compile the Hercules mono graphics with
  747.     acceleration functions.
  748.  
  749. config FB_SGIVW
  750.     tristate "SGI Visual Workstation framebuffer support"
  751.     depends on FB && X86_VISWS
  752.     select FB_CFB_FILLRECT
  753.     select FB_CFB_COPYAREA
  754.     select FB_CFB_IMAGEBLIT
  755.     help
  756.       SGI Visual Workstation support for framebuffer graphics.
  757.  
  758. config FB_GBE
  759.     bool "SGI Graphics Backend frame buffer support"
  760.     depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  761.     select FB_CFB_FILLRECT
  762.     select FB_CFB_COPYAREA
  763.     select FB_CFB_IMAGEBLIT
  764.      help
  765.       This is the frame buffer device driver for SGI Graphics Backend.
  766.       This chip is used in SGI O2 and Visual Workstation 320/540.
  767.  
  768. config FB_GBE_MEM
  769.     int "Video memory size in MB"
  770.     depends on FB_GBE
  771.     default 4
  772.     help
  773.       This is the amount of memory reserved for the framebuffer,
  774.       which can be any value between 1MB and 8MB.
  775.  
  776. config FB_SBUS
  777.     bool "SBUS and UPA framebuffers"
  778.     depends on (FB = y) && SPARC
  779.     help
  780.       Say Y if you want support for SBUS or UPA based frame buffer device.
  781.  
  782. config FB_BW2
  783.     bool "BWtwo support"
  784.     depends on (FB = y) && (SPARC && FB_SBUS)
  785.     select FB_CFB_FILLRECT
  786.     select FB_CFB_COPYAREA
  787.     select FB_CFB_IMAGEBLIT
  788.     help
  789.       This is the frame buffer device driver for the BWtwo frame buffer.
  790.  
  791. config FB_CG3
  792.     bool "CGthree support"
  793.     depends on (FB = y) && (SPARC && FB_SBUS)
  794.     select FB_CFB_FILLRECT
  795.     select FB_CFB_COPYAREA
  796.     select FB_CFB_IMAGEBLIT
  797.     help
  798.       This is the frame buffer device driver for the CGthree frame buffer.
  799.  
  800. config FB_CG6
  801.     bool "CGsix (GX,TurboGX) support"
  802.     depends on (FB = y) && (SPARC && FB_SBUS)
  803.     select FB_CFB_COPYAREA
  804.     select FB_CFB_IMAGEBLIT
  805.     help
  806.       This is the frame buffer device driver for the CGsix (GX, TurboGX)
  807.       frame buffer.
  808.  
  809. config FB_FFB
  810.     bool "Creator/Creator3D/Elite3D support"
  811.     depends on FB_SBUS && SPARC64
  812.     select FB_CFB_COPYAREA
  813.     select FB_CFB_IMAGEBLIT
  814.     help
  815.       This is the frame buffer device driver for the Creator, Creator3D,
  816.       and Elite3D graphics boards.
  817.  
  818. config FB_TCX
  819.     bool "TCX (SS4/SS5 only) support"
  820.     depends on FB_SBUS
  821.     select FB_CFB_FILLRECT
  822.     select FB_CFB_COPYAREA
  823.     select FB_CFB_IMAGEBLIT
  824.     help
  825.       This is the frame buffer device driver for the TCX 24/8bit frame
  826.       buffer.
  827.  
  828. config FB_CG14
  829.     bool "CGfourteen (SX) support"
  830.     depends on FB_SBUS
  831.     select FB_CFB_FILLRECT
  832.     select FB_CFB_COPYAREA
  833.     select FB_CFB_IMAGEBLIT
  834.     help
  835.       This is the frame buffer device driver for the CGfourteen frame
  836.       buffer on Desktop SPARCsystems with the SX graphics option.
  837.  
  838. config FB_P9100
  839.     bool "P9100 (Sparcbook 3 only) support"
  840.     depends on FB_SBUS
  841.     select FB_CFB_FILLRECT
  842.     select FB_CFB_COPYAREA
  843.     select FB_CFB_IMAGEBLIT
  844.     help
  845.       This is the frame buffer device driver for the P9100 card
  846.       supported on Sparcbook 3 machines.
  847.  
  848. config FB_LEO
  849.     bool "Leo (ZX) support"
  850.     depends on FB_SBUS
  851.     select FB_CFB_FILLRECT
  852.     select FB_CFB_COPYAREA
  853.     select FB_CFB_IMAGEBLIT
  854.     help
  855.       This is the frame buffer device driver for the SBUS-based Sun ZX
  856.       (leo) frame buffer cards.
  857.  
  858. config FB_IGA
  859.     bool "IGA 168x display support"
  860.     depends on (FB = y) && SPARC32
  861.     select FB_CFB_FILLRECT
  862.     select FB_CFB_COPYAREA
  863.     select FB_CFB_IMAGEBLIT
  864.     help
  865.       This is the framebuffer device for the INTERGRAPHICS 1680 and
  866.       successor frame buffer cards.
  867.  
  868. config FB_XVR500
  869.     bool "Sun XVR-500 3DLABS Wildcat support"
  870.     depends on (FB = y) && PCI && SPARC64
  871.     select FB_CFB_FILLRECT
  872.     select FB_CFB_COPYAREA
  873.     select FB_CFB_IMAGEBLIT
  874.     help
  875.       This is the framebuffer device for the Sun XVR-500 and similar
  876.       graphics cards based upon the 3DLABS Wildcat chipset.  The driver
  877.       only works on sparc64 systems where the system firmware has
  878.       mostly initialized the card already.  It is treated as a
  879.       completely dumb framebuffer device.
  880.  
  881. config FB_XVR2500
  882.     bool "Sun XVR-2500 3DLABS Wildcat support"
  883.     depends on (FB = y) && PCI && SPARC64
  884.     select FB_CFB_FILLRECT
  885.     select FB_CFB_COPYAREA
  886.     select FB_CFB_IMAGEBLIT
  887.     help
  888.       This is the framebuffer device for the Sun XVR-2500 and similar
  889.       graphics cards based upon the 3DLABS Wildcat chipset.  The driver
  890.       only works on sparc64 systems where the system firmware has
  891.       mostly initialized the card already.  It is treated as a
  892.       completely dumb framebuffer device.
  893.  
  894. config FB_PVR2
  895.     tristate "NEC PowerVR 2 display support"
  896.     depends on FB && SH_DREAMCAST
  897.     select FB_CFB_FILLRECT
  898.     select FB_CFB_COPYAREA
  899.     select FB_CFB_IMAGEBLIT
  900.     ---help---
  901.       Say Y here if you have a PowerVR 2 card in your box.  If you plan to
  902.       run linux on your Dreamcast, you will have to say Y here.
  903.       This driver may or may not work on other PowerVR 2 cards, but is
  904.       totally untested.  Use at your own risk.  If unsure, say N.
  905.  
  906.       To compile this driver as a module, choose M here: the
  907.       module will be called pvr2fb.
  908.  
  909.       You can pass several parameters to the driver at boot time or at
  910.       module load time.  The parameters look like "video=pvr2:XXX", where
  911.       the meaning of XXX can be found at the end of the main source file
  912.       (<file:drivers/video/pvr2fb.c>). Please see the file
  913.       <file:Documentation/fb/pvr2fb.txt>.
  914.  
  915. config FB_EPSON1355
  916.     bool "Epson 1355 framebuffer support"
  917.     depends on (FB = y) && ARCH_CEIVA
  918.     select FB_CFB_FILLRECT
  919.     select FB_CFB_COPYAREA
  920.     select FB_CFB_IMAGEBLIT
  921.     help
  922.       Build in support for the SED1355 Epson Research Embedded RAMDAC
  923.       LCD/CRT Controller (since redesignated as the S1D13505) as a
  924.       framebuffer.  Product specs at
  925.       <http://www.erd.epson.com/vdc/html/products.htm>.
  926.  
  927. config FB_S1D13XXX
  928.     tristate "Epson S1D13XXX framebuffer support"
  929.     depends on FB
  930.     select FB_CFB_FILLRECT
  931.     select FB_CFB_COPYAREA
  932.     select FB_CFB_IMAGEBLIT
  933.     help
  934.       Support for S1D13XXX framebuffer device family (currently only
  935.       working with S1D13806). Product specs at
  936.       <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  937.  
  938. config FB_ATMEL
  939.     tristate "AT91/AT32 LCD Controller support"
  940.     depends on FB && (ARCH_AT91SAM9261 || ARCH_AT91SAM9263 || ARCH_AT91SAM9RL || ARCH_AT91CAP9 || AVR32)
  941.     select FB_CFB_FILLRECT
  942.     select FB_CFB_COPYAREA
  943.     select FB_CFB_IMAGEBLIT
  944.     help
  945.       This enables support for the AT91/AT32 LCD Controller.
  946.  
  947. config FB_INTSRAM
  948.     bool "Frame Buffer in internal SRAM"
  949.     depends on FB_ATMEL && ARCH_AT91SAM9261
  950.     help
  951.       Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
  952.       to let frame buffer in external SDRAM.
  953.  
  954. config FB_ATMEL_STN
  955.     bool "Use a STN display with AT91/AT32 LCD Controller"
  956.     depends on FB_ATMEL && MACH_AT91SAM9261EK
  957.     default n
  958.     help
  959.       Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
  960.       Controller. Say N if you want to connect a TFT.
  961.  
  962.       If unsure, say N.
  963.  
  964. config FB_NVIDIA
  965.     tristate "nVidia Framebuffer Support"
  966.     depends on FB && PCI
  967.     select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  968.     select FB_MODE_HELPERS
  969.     select FB_CFB_FILLRECT
  970.     select FB_CFB_COPYAREA
  971.     select FB_CFB_IMAGEBLIT
  972.     select BITREVERSE
  973.     select VGASTATE
  974.     help
  975.       This driver supports graphics boards with the nVidia chips, TNT
  976.       and newer. For very old chipsets, such as the RIVA128, then use
  977.       the rivafb.
  978.       Say Y if you have such a graphics board.
  979.  
  980.       To compile this driver as a module, choose M here: the
  981.       module will be called nvidiafb.
  982.  
  983. config FB_NVIDIA_I2C
  984.        bool "Enable DDC Support"
  985.        depends on FB_NVIDIA
  986.        select FB_DDC
  987.        help
  988.       This enables I2C support for nVidia Chipsets.  This is used
  989.       only for getting EDID information from the attached display
  990.       allowing for robust video mode handling and switching.
  991.  
  992.       Because fbdev-2.6 requires that drivers must be able to
  993.       independently validate video mode parameters, you should say Y
  994.       here.
  995.  
  996. config FB_NVIDIA_DEBUG
  997.     bool "Lots of debug output"
  998.     depends on FB_NVIDIA
  999.     default n
  1000.     help
  1001.       Say Y here if you want the nVidia driver to output all sorts
  1002.       of debugging information to provide to the maintainer when
  1003.       something goes wrong.
  1004.  
  1005. config FB_NVIDIA_BACKLIGHT
  1006.     bool "Support for backlight control"
  1007.     depends on FB_NVIDIA
  1008.     default y
  1009.     help
  1010.       Say Y here if you want to control the backlight of your display.
  1011.  
  1012. config FB_RIVA
  1013.     tristate "nVidia Riva support"
  1014.     depends on FB && PCI
  1015.     select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  1016.     select FB_MODE_HELPERS
  1017.     select FB_CFB_FILLRECT
  1018.     select FB_CFB_COPYAREA
  1019.     select FB_CFB_IMAGEBLIT
  1020.     select BITREVERSE
  1021.     select VGASTATE
  1022.     help
  1023.       This driver supports graphics boards with the nVidia Riva/Geforce
  1024.       chips.
  1025.       Say Y if you have such a graphics board.
  1026.  
  1027.       To compile this driver as a module, choose M here: the
  1028.       module will be called rivafb.
  1029.  
  1030. config FB_RIVA_I2C
  1031.        bool "Enable DDC Support"
  1032.        depends on FB_RIVA
  1033.        select FB_DDC
  1034.        help
  1035.       This enables I2C support for nVidia Chipsets.  This is used
  1036.       only for getting EDID information from the attached display
  1037.       allowing for robust video mode handling and switching.
  1038.  
  1039.       Because fbdev-2.6 requires that drivers must be able to
  1040.       independently validate video mode parameters, you should say Y
  1041.       here.
  1042.  
  1043. config FB_RIVA_DEBUG
  1044.     bool "Lots of debug output"
  1045.     depends on FB_RIVA
  1046.     default n
  1047.     help
  1048.       Say Y here if you want the Riva driver to output all sorts
  1049.       of debugging information to provide to the maintainer when
  1050.       something goes wrong.
  1051.  
  1052. config FB_RIVA_BACKLIGHT
  1053.     bool "Support for backlight control"
  1054.     depends on FB_RIVA
  1055.     default y
  1056.     help
  1057.       Say Y here if you want to control the backlight of your display.
  1058.  
  1059. config FB_I810
  1060.     tristate "Intel 810/815 support (EXPERIMENTAL)"
  1061.     depends on FB && EXPERIMENTAL && PCI && X86_32
  1062.     select AGP
  1063.     select AGP_INTEL
  1064.     select FB_MODE_HELPERS
  1065.     select FB_CFB_FILLRECT
  1066.     select FB_CFB_COPYAREA
  1067.     select FB_CFB_IMAGEBLIT
  1068.     select VGASTATE
  1069.     help
  1070.       This driver supports the on-board graphics built in to the Intel 810 
  1071.           and 815 chipsets.  Say Y if you have and plan to use such a board.
  1072.  
  1073.           To compile this driver as a module, choose M here: the
  1074.       module will be called i810fb.
  1075.  
  1076.           For more information, please read 
  1077.       <file:Documentation/fb/intel810.txt>
  1078.  
  1079. config FB_I810_GTF
  1080.     bool "use VESA Generalized Timing Formula"
  1081.     depends on FB_I810
  1082.     help
  1083.       If you say Y, then the VESA standard, Generalized Timing Formula 
  1084.           or GTF, will be used to calculate the required video timing values
  1085.       per video mode.  Since the GTF allows nondiscrete timings 
  1086.           (nondiscrete being a range of values as opposed to discrete being a
  1087.           set of values), you'll be able to use any combination of horizontal 
  1088.       and vertical resolutions, and vertical refresh rates without having
  1089.       to specify your own timing parameters.  This is especially useful
  1090.       to maximize the performance of an aging display, or if you just 
  1091.           have a display with nonstandard dimensions. A VESA compliant 
  1092.       monitor is recommended, but can still work with non-compliant ones.
  1093.       If you need or want this, then select this option. The timings may 
  1094.       not be compliant with Intel's recommended values. Use at your own 
  1095.       risk.
  1096.  
  1097.           If you say N, the driver will revert to discrete video timings 
  1098.       using a set recommended by Intel in their documentation.
  1099.   
  1100.           If unsure, say N.
  1101.  
  1102. config FB_I810_I2C
  1103.     bool "Enable DDC Support"
  1104.     depends on FB_I810 && FB_I810_GTF
  1105.     select FB_DDC
  1106.     help
  1107.  
  1108. config FB_LE80578
  1109.     tristate "Intel LE80578 (Vermilion) support"
  1110.     depends on FB && PCI && X86
  1111.     select FB_MODE_HELPERS
  1112.     select FB_CFB_FILLRECT
  1113.     select FB_CFB_COPYAREA
  1114.     select FB_CFB_IMAGEBLIT
  1115.     help
  1116.       This driver supports the LE80578 (Vermilion Range) chipset
  1117.  
  1118. config FB_CARILLO_RANCH
  1119.     tristate "Intel Carillo Ranch support"
  1120.     depends on FB_LE80578 && FB && PCI && X86
  1121.     help
  1122.       This driver supports the LE80578 (Carillo Ranch) board
  1123.  
  1124. config FB_INTEL
  1125.     tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
  1126.     depends on FB && EXPERIMENTAL && PCI && X86
  1127.     select AGP
  1128.     select AGP_INTEL
  1129.     select FB_MODE_HELPERS
  1130.     select FB_CFB_FILLRECT
  1131.     select FB_CFB_COPYAREA
  1132.     select FB_CFB_IMAGEBLIT
  1133.     select FB_BOOT_VESA_SUPPORT
  1134.     help
  1135.       This driver supports the on-board graphics built in to the Intel
  1136.           830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
  1137.           Say Y if you have and plan to use such a board.
  1138.  
  1139.       If you say Y here and want DDC/I2C support you must first say Y to
  1140.       "I2C support" and "I2C bit-banging support" in the character devices
  1141.       section.
  1142.  
  1143.       If you say M here then "I2C support" and "I2C bit-banging support"
  1144.       can be build either as modules or built-in.
  1145.  
  1146.       To compile this driver as a module, choose M here: the
  1147.       module will be called intelfb.
  1148.  
  1149.       For more information, please read <file:Documentation/fb/intelfb.txt>
  1150.  
  1151. config FB_INTEL_DEBUG
  1152.     bool "Intel driver Debug Messages"
  1153.     depends on FB_INTEL
  1154.     ---help---
  1155.       Say Y here if you want the Intel driver to output all sorts
  1156.       of debugging information to provide to the maintainer when
  1157.       something goes wrong.
  1158.  
  1159. config FB_INTEL_I2C
  1160.     bool "DDC/I2C for Intel framebuffer support"
  1161.     depends on FB_INTEL
  1162.     select FB_DDC
  1163.     default y
  1164.     help
  1165.       Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  1166.  
  1167. config FB_MATROX
  1168.     tristate "Matrox acceleration"
  1169.     depends on FB && PCI
  1170.     select FB_CFB_FILLRECT
  1171.     select FB_CFB_COPYAREA
  1172.     select FB_CFB_IMAGEBLIT
  1173.     select FB_TILEBLITTING
  1174.     select FB_MACMODES if PPC_PMAC
  1175.     ---help---
  1176.       Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  1177.       Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  1178.       Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  1179.       Matrox G400, G450 or G550 card in your box.
  1180.  
  1181.       To compile this driver as a module, choose M here: the
  1182.       module will be called matroxfb.
  1183.  
  1184.       You can pass several parameters to the driver at boot time or at
  1185.       module load time. The parameters look like "video=matrox:XXX", and
  1186.       are described in <file:Documentation/fb/matroxfb.txt>.
  1187.  
  1188. config FB_MATROX_MILLENIUM
  1189.     bool "Millennium I/II support"
  1190.     depends on FB_MATROX
  1191.     help
  1192.       Say Y here if you have a Matrox Millennium or Matrox Millennium II
  1193.       video card. If you select "Advanced lowlevel driver options" below,
  1194.       you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  1195.       packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  1196.       also use font widths different from 8.
  1197.  
  1198. config FB_MATROX_MYSTIQUE
  1199.     bool "Mystique support"
  1200.     depends on FB_MATROX
  1201.     help
  1202.       Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  1203.       video card. If you select "Advanced lowlevel driver options" below,
  1204.       you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  1205.       packed pixel and 32 bpp packed pixel. You can also use font widths
  1206.       different from 8.
  1207.  
  1208. config FB_MATROX_G
  1209.     bool "G100/G200/G400/G450/G550 support"
  1210.     depends on FB_MATROX
  1211.     ---help---
  1212.       Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  1213.       video card. If you select "Advanced lowlevel driver options", you
  1214.       should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  1215.       pixel and 32 bpp packed pixel. You can also use font widths
  1216.       different from 8.
  1217.  
  1218.       If you need support for G400 secondary head, you must first say Y to
  1219.       "I2C support" in the character devices section, and then to
  1220.       "Matrox I2C support" and "G400 second head support" here in the
  1221.       framebuffer section. G450/G550 secondary head and digital output
  1222.       are supported without additional modules.
  1223.  
  1224.       The driver starts in monitor mode. You must use the matroxset tool 
  1225.       (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 
  1226.       swap primary and secondary head outputs, or to change output mode.  
  1227.       Secondary head driver always start in 640x480 resolution and you 
  1228.       must use fbset to change it.
  1229.  
  1230.       Do not forget that second head supports only 16 and 32 bpp
  1231.       packed pixels, so it is a good idea to compile them into the kernel
  1232.       too. You can use only some font widths, as the driver uses generic
  1233.       painting procedures (the secondary head does not use acceleration
  1234.       engine).
  1235.  
  1236.       G450/G550 hardware can display TV picture only from secondary CRTC,
  1237.       and it performs no scaling, so picture must have 525 or 625 lines.
  1238.  
  1239. config FB_MATROX_I2C
  1240.     tristate "Matrox I2C support"
  1241.     depends on FB_MATROX
  1242.     select FB_DDC
  1243.     ---help---
  1244.       This drivers creates I2C buses which are needed for accessing the
  1245.       DDC (I2C) bus present on all Matroxes, an I2C bus which
  1246.       interconnects Matrox optional devices, like MGA-TVO on G200 and
  1247.       G400, and the secondary head DDC bus, present on G400 only.
  1248.  
  1249.       You can say Y or M here if you want to experiment with monitor
  1250.       detection code. You must say Y or M here if you want to use either
  1251.       second head of G400 or MGA-TVO on G200 or G400.
  1252.  
  1253.       If you compile it as module, it will create a module named
  1254.       i2c-matroxfb.
  1255.  
  1256. config FB_MATROX_MAVEN
  1257.     tristate "G400 second head support"
  1258.     depends on FB_MATROX_G && FB_MATROX_I2C
  1259.     ---help---
  1260.       WARNING !!! This support does not work with G450 !!!
  1261.  
  1262.       Say Y or M here if you want to use a secondary head (meaning two
  1263.       monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1264.       head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1265.       secondary head output is blanked while you are in X. With XFree
  1266.       3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1267.       the fbdev driver on first head and the fbdev driver on second head.
  1268.  
  1269.       If you compile it as module, two modules are created,
  1270.       matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1271.       both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1272.       also load i2c-matroxfb to get it to run.
  1273.  
  1274.       The driver starts in monitor mode and you must use the matroxset
  1275.       tool (available at
  1276.       <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1277.       PAL or NTSC or to swap primary and secondary head outputs.
  1278.       Secondary head driver also always start in 640x480 resolution, you
  1279.       must use fbset to change it.
  1280.  
  1281.       Also do not forget that second head supports only 16 and 32 bpp
  1282.       packed pixels, so it is a good idea to compile them into the kernel
  1283.       too.  You can use only some font widths, as the driver uses generic
  1284.       painting procedures (the secondary head does not use acceleration
  1285.       engine).
  1286.  
  1287. config FB_MATROX_MULTIHEAD
  1288.     bool "Multihead support"
  1289.     depends on FB_MATROX
  1290.     ---help---
  1291.       Say Y here if you have more than one (supported) Matrox device in
  1292.       your computer and you want to use all of them for different monitors
  1293.       ("multihead"). If you have only one device, you should say N because
  1294.       the driver compiled with Y is larger and a bit slower, especially on
  1295.       ia32 (ix86).
  1296.  
  1297.       If you said M to "Matrox unified accelerated driver" and N here, you
  1298.       will still be able to use several Matrox devices simultaneously:
  1299.       insert several instances of the module matroxfb into the kernel
  1300.       with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  1301.       for the different Matrox devices. This method is slightly faster but
  1302.       uses 40 KB of kernel memory per Matrox card.
  1303.  
  1304.       There is no need for enabling 'Matrox multihead support' if you have
  1305.       only one Matrox card in the box.
  1306.  
  1307. config FB_RADEON
  1308.     tristate "ATI Radeon display support"
  1309.     depends on FB && PCI
  1310.     select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1311.     select FB_MODE_HELPERS
  1312.     select FB_CFB_FILLRECT
  1313.     select FB_CFB_COPYAREA
  1314.     select FB_CFB_IMAGEBLIT
  1315.     select FB_MACMODES if PPC_OF
  1316.     help
  1317.       Choose this option if you want to use an ATI Radeon graphics card as
  1318.       a framebuffer device.  There are both PCI and AGP versions.  You
  1319.       don't need to choose this to run the Radeon in plain VGA mode.
  1320.  
  1321.       If you say Y here and want DDC/I2C support you must first say Y to
  1322.       "I2C support" and "I2C bit-banging support" in the character devices
  1323.       section.
  1324.  
  1325.       If you say M here then "I2C support" and "I2C bit-banging support" 
  1326.       can be build either as modules or built-in.
  1327.  
  1328.       There is a product page at
  1329.       http://apps.ati.com/ATIcompare/
  1330.  
  1331. config FB_RADEON_I2C
  1332.     bool "DDC/I2C for ATI Radeon support"
  1333.     depends on FB_RADEON
  1334.     select FB_DDC
  1335.     default y
  1336.     help
  1337.       Say Y here if you want DDC/I2C support for your Radeon board. 
  1338.  
  1339. config FB_RADEON_BACKLIGHT
  1340.     bool "Support for backlight control"
  1341.     depends on FB_RADEON
  1342.     default y
  1343.     help
  1344.       Say Y here if you want to control the backlight of your display.
  1345.  
  1346. config FB_RADEON_DEBUG
  1347.     bool "Lots of debug output from Radeon driver"
  1348.     depends on FB_RADEON
  1349.     default n
  1350.     help
  1351.       Say Y here if you want the Radeon driver to output all sorts
  1352.       of debugging information to provide to the maintainer when
  1353.       something goes wrong.
  1354.  
  1355. config FB_ATY128
  1356.     tristate "ATI Rage128 display support"
  1357.     depends on FB && PCI
  1358.     select FB_CFB_FILLRECT
  1359.     select FB_CFB_COPYAREA
  1360.     select FB_CFB_IMAGEBLIT
  1361.     select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  1362.     select FB_MACMODES if PPC_PMAC
  1363.     help
  1364.       This driver supports graphics boards with the ATI Rage128 chips.
  1365.       Say Y if you have such a graphics board and read
  1366.       <file:Documentation/fb/aty128fb.txt>.
  1367.  
  1368.       To compile this driver as a module, choose M here: the
  1369.       module will be called aty128fb.
  1370.  
  1371. config FB_ATY128_BACKLIGHT
  1372.     bool "Support for backlight control"
  1373.     depends on FB_ATY128
  1374.     default y
  1375.     help
  1376.       Say Y here if you want to control the backlight of your display.
  1377.  
  1378. config FB_ATY
  1379.     tristate "ATI Mach64 display support" if PCI || ATARI
  1380.     depends on FB && !SPARC32
  1381.     select FB_CFB_FILLRECT
  1382.     select FB_CFB_COPYAREA
  1383.     select FB_CFB_IMAGEBLIT
  1384.     select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  1385.     select FB_MACMODES if PPC
  1386.     help
  1387.       This driver supports graphics boards with the ATI Mach64 chips.
  1388.       Say Y if you have such a graphics board.
  1389.  
  1390.       To compile this driver as a module, choose M here: the
  1391.       module will be called atyfb.
  1392.  
  1393. config FB_ATY_CT
  1394.     bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  1395.     depends on PCI && FB_ATY
  1396.     default y if SPARC64 && PCI
  1397.     help
  1398.       Say Y here to support use of ATI's 64-bit Rage boards (or other
  1399.       boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1400.       framebuffer device.  The ATI product support page for these boards
  1401.       is at <http://support.ati.com/products/pc/mach64/>.
  1402.  
  1403. config FB_ATY_GENERIC_LCD
  1404.     bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1405.     depends on FB_ATY_CT
  1406.     help
  1407.       Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1408.       Rage XC, or Rage XL chipset.
  1409.  
  1410. config FB_ATY_GX
  1411.     bool "Mach64 GX support" if PCI
  1412.     depends on FB_ATY
  1413.     default y if ATARI
  1414.     help
  1415.       Say Y here to support use of the ATI Mach64 Graphics Expression
  1416.       board (or other boards based on the Mach64 GX chipset) as a
  1417.       framebuffer device.  The ATI product support page for these boards
  1418.       is at
  1419.       <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1420.  
  1421. config FB_ATY_BACKLIGHT
  1422.     bool "Support for backlight control"
  1423.     depends on FB_ATY
  1424.     default y
  1425.     help
  1426.       Say Y here if you want to control the backlight of your display.
  1427.  
  1428. config FB_S3
  1429.     tristate "S3 Trio/Virge support"
  1430.     depends on FB && PCI
  1431.     select FB_CFB_FILLRECT
  1432.     select FB_CFB_COPYAREA
  1433.     select FB_CFB_IMAGEBLIT
  1434.     select FB_TILEBLITTING
  1435.     select FB_SVGALIB
  1436.     select VGASTATE
  1437.     select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1438.     ---help---
  1439.       Driver for graphics boards with S3 Trio / S3 Virge chip.
  1440.  
  1441. config FB_SAVAGE
  1442.     tristate "S3 Savage support"
  1443.     depends on FB && PCI && EXPERIMENTAL
  1444.     select FB_MODE_HELPERS
  1445.     select FB_CFB_FILLRECT
  1446.     select FB_CFB_COPYAREA
  1447.     select FB_CFB_IMAGEBLIT
  1448.     select VGASTATE
  1449.     help
  1450.       This driver supports notebooks and computers with S3 Savage PCI/AGP
  1451.       chips.
  1452.  
  1453.       Say Y if you have such a graphics card.
  1454.  
  1455.       To compile this driver as a module, choose M here; the module
  1456.       will be called savagefb.
  1457.  
  1458. config FB_SAVAGE_I2C
  1459.        bool "Enable DDC2 Support"
  1460.        depends on FB_SAVAGE
  1461.        select FB_DDC
  1462.        help
  1463.       This enables I2C support for S3 Savage Chipsets.  This is used
  1464.       only for getting EDID information from the attached display
  1465.       allowing for robust video mode handling and switching.
  1466.  
  1467.       Because fbdev-2.6 requires that drivers must be able to
  1468.       independently validate video mode parameters, you should say Y
  1469.       here.
  1470.  
  1471. config FB_SAVAGE_ACCEL
  1472.        bool "Enable Console Acceleration"
  1473.        depends on FB_SAVAGE
  1474.        default n
  1475.        help
  1476.           This option will compile in console acceleration support. If
  1477.           the resulting framebuffer console has bothersome glitches, then
  1478.           choose N here.
  1479.  
  1480. config FB_SIS
  1481.     tristate "SiS/XGI display support"
  1482.     depends on FB && PCI
  1483.     select FB_CFB_FILLRECT
  1484.     select FB_CFB_COPYAREA
  1485.     select FB_CFB_IMAGEBLIT
  1486.     select FB_BOOT_VESA_SUPPORT
  1487.     help
  1488.       This is the frame buffer device driver for the SiS 300, 315, 330
  1489.       and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1490.       Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1491.  
  1492.       To compile this driver as a module, choose M here; the module
  1493.       will be called sisfb.
  1494.  
  1495. config FB_SIS_300
  1496.     bool "SiS 300 series support"
  1497.     depends on FB_SIS
  1498.     help
  1499.       Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1500.  
  1501. config FB_SIS_315
  1502.     bool "SiS 315/330/340 series and XGI support"
  1503.     depends on FB_SIS
  1504.     help
  1505.       Say Y here to support use of the SiS 315, 330 and 340 series
  1506.       (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1507.       as XGI V3XT, V5, V8 and Z7.
  1508.  
  1509. config FB_VIA
  1510.        tristate "VIA UniChrome (Pro) and Chrome9 display support"
  1511.        depends on FB && PCI
  1512.        select FB_CFB_FILLRECT
  1513.        select FB_CFB_COPYAREA
  1514.        select FB_CFB_IMAGEBLIT
  1515.        select FB_SOFT_CURSOR
  1516.        select I2C_ALGOBIT
  1517.        select I2C
  1518.        help
  1519.       This is the frame buffer device driver for Graphics chips of VIA
  1520.       UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
  1521.       CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
  1522.        /P4M900,VX800)
  1523.       Say Y if you have a VIA UniChrome graphics board.
  1524.  
  1525.       To compile this driver as a module, choose M here: the
  1526.       module will be called viafb.
  1527. config FB_NEOMAGIC
  1528.     tristate "NeoMagic display support"
  1529.     depends on FB && PCI
  1530.     select FB_MODE_HELPERS
  1531.     select FB_CFB_FILLRECT
  1532.     select FB_CFB_COPYAREA
  1533.     select FB_CFB_IMAGEBLIT
  1534.     select VGASTATE
  1535.     help
  1536.       This driver supports notebooks with NeoMagic PCI chips.
  1537.       Say Y if you have such a graphics card. 
  1538.  
  1539.       To compile this driver as a module, choose M here: the
  1540.       module will be called neofb.
  1541.  
  1542. config FB_KYRO
  1543.     tristate "IMG Kyro support"
  1544.     depends on FB && PCI
  1545.     select FB_CFB_FILLRECT
  1546.     select FB_CFB_COPYAREA
  1547.     select FB_CFB_IMAGEBLIT
  1548.     help
  1549.       Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1550.       graphics board.
  1551.  
  1552.       To compile this driver as a module, choose M here: the
  1553.       module will be called kyrofb.
  1554.  
  1555. config FB_3DFX
  1556.     tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
  1557.     depends on FB && PCI
  1558.     select FB_CFB_IMAGEBLIT
  1559.     select FB_CFB_FILLRECT
  1560.     select FB_CFB_COPYAREA
  1561.     help
  1562.       This driver supports graphics boards with the 3Dfx Banshee,
  1563.       Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
  1564.       such a graphics board.
  1565.  
  1566.       To compile this driver as a module, choose M here: the
  1567.       module will be called tdfxfb.
  1568.  
  1569. config FB_3DFX_ACCEL
  1570.     bool "3Dfx Acceleration functions (EXPERIMENTAL)"
  1571.     depends on FB_3DFX && EXPERIMENTAL
  1572.     ---help---
  1573.     This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
  1574.     device driver with acceleration functions.
  1575.  
  1576. config FB_VOODOO1
  1577.     tristate "3Dfx Voodoo Graphics (sst1) support"
  1578.     depends on FB && PCI
  1579.     select FB_CFB_FILLRECT
  1580.     select FB_CFB_COPYAREA
  1581.     select FB_CFB_IMAGEBLIT
  1582.     ---help---
  1583.       Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or 
  1584.       Voodoo2 (cvg) based graphics card.
  1585.  
  1586.       To compile this driver as a module, choose M here: the
  1587.       module will be called sstfb.
  1588.  
  1589.       WARNING: Do not use any application that uses the 3D engine
  1590.       (namely glide) while using this driver.
  1591.       Please read the <file:Documentation/fb/sstfb.txt> for supported
  1592.       options and other important info  support.
  1593.  
  1594. config FB_VT8623
  1595.     tristate "VIA VT8623 support"
  1596.     depends on FB && PCI
  1597.     select FB_CFB_FILLRECT
  1598.     select FB_CFB_COPYAREA
  1599.     select FB_CFB_IMAGEBLIT
  1600.     select FB_TILEBLITTING
  1601.     select FB_SVGALIB
  1602.     select VGASTATE
  1603.     select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1604.     ---help---
  1605.       Driver for CastleRock integrated graphics core in the
  1606.       VIA VT8623 [Apollo CLE266] chipset.
  1607.  
  1608. config FB_CYBLA
  1609.     tristate "Cyberblade/i1 support"
  1610.     depends on FB && PCI && X86_32 && !64BIT
  1611.     select FB_CFB_IMAGEBLIT
  1612.     ---help---
  1613.       This driver is supposed to support the Trident Cyberblade/i1
  1614.       graphics core integrated in the VIA VT8601A North Bridge,
  1615.       also known as VIA Apollo PLE133.
  1616.  
  1617.       Status:
  1618.        - Developed, tested and working on EPIA 5000 and EPIA 800.
  1619.        - Does work reliable on all systems with CRT/LCD connected to
  1620.          normal VGA ports.
  1621.        - Should work on systems that do use the internal LCD port, but
  1622.          this is absolutely not tested.
  1623.  
  1624.       Character imageblit, copyarea and rectangle fill are hw accelerated,
  1625.       ypan scrolling is used by default.
  1626.  
  1627.       Please do read <file:Documentation/fb/cyblafb/*>.
  1628.  
  1629.       To compile this driver as a module, choose M here: the
  1630.       module will be called cyblafb.
  1631.  
  1632. config FB_TRIDENT
  1633.     tristate "Trident support"
  1634.     depends on FB && PCI
  1635.     select FB_CFB_FILLRECT
  1636.     select FB_CFB_COPYAREA
  1637.     select FB_CFB_IMAGEBLIT
  1638.     ---help---
  1639.       This is the frame buffer device driver for Trident PCI/AGP chipsets.
  1640.       Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
  1641.       and Blade XP.
  1642.       There are also integrated versions of these chips called CyberXXXX,
  1643.       CyberImage or CyberBlade. These chips are mostly found in laptops
  1644.       but also on some motherboards. For more information, read
  1645.       <file:Documentation/fb/tridentfb.txt>
  1646.  
  1647.       Say Y if you have such a graphics board.
  1648.  
  1649.       To compile this driver as a module, choose M here: the
  1650.       module will be called tridentfb.
  1651.  
  1652. config FB_TRIDENT_ACCEL
  1653.     bool "Trident Acceleration functions (EXPERIMENTAL)"
  1654.     depends on FB_TRIDENT && EXPERIMENTAL
  1655.     ---help---
  1656.     This will compile the Trident frame buffer device with
  1657.     acceleration functions.
  1658.  
  1659. config FB_ARK
  1660.     tristate "ARK 2000PV support"
  1661.     depends on FB && PCI
  1662.     select FB_CFB_FILLRECT
  1663.     select FB_CFB_COPYAREA
  1664.     select FB_CFB_IMAGEBLIT
  1665.     select FB_TILEBLITTING
  1666.     select FB_SVGALIB
  1667.     select VGASTATE
  1668.     select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1669.     ---help---
  1670.       Driver for PCI graphics boards with ARK 2000PV chip
  1671.       and ICS 5342 RAMDAC.
  1672.  
  1673. config FB_PM3
  1674.     tristate "Permedia3 support (EXPERIMENTAL)"
  1675.     depends on FB && PCI && EXPERIMENTAL
  1676.     select FB_CFB_FILLRECT
  1677.     select FB_CFB_COPYAREA
  1678.     select FB_CFB_IMAGEBLIT
  1679.     help
  1680.       This is the frame buffer device driver for the 3DLabs Permedia3
  1681.       chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1682.       similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1683.       and maybe other boards.
  1684.  
  1685. config FB_CARMINE
  1686.     tristate "Fujitsu carmine frame buffer support"
  1687.     depends on FB && PCI
  1688.     select FB_CFB_FILLRECT
  1689.     select FB_CFB_COPYAREA
  1690.     select FB_CFB_IMAGEBLIT
  1691.     help
  1692.       This is the frame buffer device driver for the Fujitsu Carmine chip.
  1693.       The driver provides two independent frame buffer devices.
  1694.  
  1695. choice
  1696.     depends on FB_CARMINE
  1697.     prompt "DRAM timing"
  1698.     default FB_CARMINE_DRAM_EVAL
  1699.  
  1700. config FB_CARMINE_DRAM_EVAL
  1701.     bool "Eval board timings"
  1702.     help
  1703.       Use timings which work on the eval card.
  1704.  
  1705. config CARMINE_DRAM_CUSTOM
  1706.     bool "Custom board timings"
  1707.     help
  1708.       Use custom board timings.
  1709. endchoice
  1710.  
  1711. config FB_AU1100
  1712.     bool "Au1100 LCD Driver"
  1713.     depends on (FB = y) && MIPS && SOC_AU1100
  1714.     select FB_CFB_FILLRECT
  1715.     select FB_CFB_COPYAREA
  1716.     select FB_CFB_IMAGEBLIT
  1717.     help
  1718.       This is the framebuffer driver for the AMD Au1100 SOC.  It can drive
  1719.       various panels and CRTs by passing in kernel cmd line option
  1720.       au1100fb:panel=<name>.
  1721.  
  1722. config FB_AU1200
  1723.     bool "Au1200 LCD Driver"
  1724.     depends on (FB = y) && MIPS && SOC_AU1200
  1725.     select FB_CFB_FILLRECT
  1726.     select FB_CFB_COPYAREA
  1727.     select FB_CFB_IMAGEBLIT
  1728.     help
  1729.       This is the framebuffer driver for the AMD Au1200 SOC.  It can drive
  1730.       various panels and CRTs by passing in kernel cmd line option
  1731.       au1200fb:panel=<name>.
  1732.  
  1733. source "drivers/video/geode/Kconfig"
  1734.  
  1735. config FB_HIT
  1736.     tristate "HD64461 Frame Buffer support"
  1737.     depends on FB && HD64461
  1738.     select FB_CFB_FILLRECT
  1739.     select FB_CFB_COPYAREA
  1740.     select FB_CFB_IMAGEBLIT
  1741.     help
  1742.       This is the frame buffer device driver for the Hitachi HD64461 LCD
  1743.       frame buffer card.
  1744.  
  1745. config FB_PMAG_AA
  1746.     bool "PMAG-AA TURBOchannel framebuffer support"
  1747.     depends on (FB = y) && TC
  1748.      select FB_CFB_FILLRECT
  1749.      select FB_CFB_COPYAREA
  1750.      select FB_CFB_IMAGEBLIT
  1751.     help
  1752.       Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1753.       used mainly in the MIPS-based DECstation series.
  1754.  
  1755. config FB_PMAG_BA
  1756.     tristate "PMAG-BA TURBOchannel framebuffer support"
  1757.     depends on FB && TC
  1758.      select FB_CFB_FILLRECT
  1759.      select FB_CFB_COPYAREA
  1760.      select FB_CFB_IMAGEBLIT
  1761.     help
  1762.       Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1763.       used mainly in the MIPS-based DECstation series.
  1764.  
  1765. config FB_PMAGB_B
  1766.     tristate "PMAGB-B TURBOchannel framebuffer support"
  1767.     depends on FB && TC
  1768.      select FB_CFB_FILLRECT
  1769.      select FB_CFB_COPYAREA
  1770.      select FB_CFB_IMAGEBLIT
  1771.     help
  1772.       Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1773.       in the MIPS-based DECstation series. The card is currently only
  1774.       supported in 1280x1024x8 mode.
  1775.  
  1776. config FB_MAXINE
  1777.     bool "Maxine (Personal DECstation) onboard framebuffer support"
  1778.     depends on (FB = y) && MACH_DECSTATION
  1779.      select FB_CFB_FILLRECT
  1780.      select FB_CFB_COPYAREA
  1781.      select FB_CFB_IMAGEBLIT
  1782.     help
  1783.       Support for the onboard framebuffer (1024x768x8) in the Personal
  1784.       DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1785.       Codename "Maxine").
  1786.  
  1787. config FB_G364
  1788.     bool "G364 frame buffer support"
  1789.     depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1790.      select FB_CFB_FILLRECT
  1791.      select FB_CFB_COPYAREA
  1792.      select FB_CFB_IMAGEBLIT
  1793.     help
  1794.       The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1795.       Olivetti M700-10 systems.
  1796.  
  1797. config FB_68328
  1798.     bool "Motorola 68328 native frame buffer support"
  1799.     depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1800.      select FB_CFB_FILLRECT
  1801.      select FB_CFB_COPYAREA
  1802.      select FB_CFB_IMAGEBLIT
  1803.     help
  1804.       Say Y here if you want to support the built-in frame buffer of
  1805.       the Motorola 68328 CPU family.
  1806.  
  1807. config FB_PXA
  1808.     tristate "PXA LCD framebuffer support"
  1809.     depends on FB && ARCH_PXA
  1810.     select FB_CFB_FILLRECT
  1811.     select FB_CFB_COPYAREA
  1812.     select FB_CFB_IMAGEBLIT
  1813.     ---help---
  1814.       Frame buffer driver for the built-in LCD controller in the Intel
  1815.       PXA2x0 processor.
  1816.  
  1817.       This driver is also available as a module ( = code which can be
  1818.       inserted and removed from the running kernel whenever you want). The
  1819.       module will be called pxafb. If you want to compile it as a module,
  1820.       say M here and read <file:Documentation/kbuild/modules.txt>.
  1821.  
  1822.       If unsure, say N.
  1823.  
  1824. config FB_PXA_SMARTPANEL
  1825.     bool "PXA Smartpanel LCD support"
  1826.     default n
  1827.     depends on FB_PXA
  1828.  
  1829. config FB_PXA_PARAMETERS
  1830.     bool "PXA LCD command line parameters"
  1831.     default n
  1832.     depends on FB_PXA
  1833.     ---help---
  1834.       Enable the use of kernel command line or module parameters
  1835.       to configure the physical properties of the LCD panel when
  1836.       using the PXA LCD driver.
  1837.  
  1838.       This option allows you to override the panel parameters
  1839.       supplied by the platform in order to support multiple
  1840.       different models of flatpanel. If you will only be using a
  1841.       single model of flatpanel then you can safely leave this
  1842.       option disabled.
  1843.  
  1844.       <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1845.  
  1846. config FB_MBX
  1847.     tristate "2700G LCD framebuffer support"
  1848.     depends on FB && ARCH_PXA
  1849.     select FB_CFB_FILLRECT
  1850.     select FB_CFB_COPYAREA
  1851.     select FB_CFB_IMAGEBLIT
  1852.     ---help---
  1853.       Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1854.       Accelerator
  1855.  
  1856. config FB_MBX_DEBUG
  1857.        bool "Enable debugging info via debugfs"
  1858.        depends on FB_MBX && DEBUG_FS
  1859.        default n
  1860.        ---help---
  1861.          Enable this if you want debugging information using the debug
  1862.          filesystem (debugfs)
  1863.  
  1864.          If unsure, say N.
  1865.  
  1866. config FB_FSL_DIU
  1867.     tristate "Freescale DIU framebuffer support"
  1868.     depends on FB && FSL_SOC
  1869.     select FB_CFB_FILLRECT
  1870.     select FB_CFB_COPYAREA
  1871.     select FB_CFB_IMAGEBLIT
  1872.     select PPC_LIB_RHEAP
  1873.     ---help---
  1874.       Framebuffer driver for the Freescale SoC DIU
  1875.  
  1876. config FB_W100
  1877.     tristate "W100 frame buffer support"
  1878.     depends on FB && ARCH_PXA
  1879.      select FB_CFB_FILLRECT
  1880.      select FB_CFB_COPYAREA
  1881.      select FB_CFB_IMAGEBLIT
  1882.     ---help---
  1883.       Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1884.       It can also drive the w3220 chip found on iPAQ hx4700.
  1885.  
  1886.       This driver is also available as a module ( = code which can be
  1887.       inserted and removed from the running kernel whenever you want). The
  1888.       module will be called w100fb. If you want to compile it as a module,
  1889.       say M here and read <file:Documentation/kbuild/modules.txt>.
  1890.  
  1891.       If unsure, say N.
  1892.  
  1893. config FB_SH_MOBILE_LCDC
  1894.     tristate "SuperH Mobile LCDC framebuffer support"
  1895.     depends on FB && SUPERH
  1896.     select FB_CFB_FILLRECT
  1897.     select FB_CFB_COPYAREA
  1898.     select FB_CFB_IMAGEBLIT
  1899.     default m
  1900.     ---help---
  1901.       Frame buffer driver for the on-chip SH-Mobile LCD controller.
  1902.  
  1903. config FB_TMIO
  1904.     tristate "Toshiba Mobile IO FrameBuffer support"
  1905.     depends on FB && MFD_CORE
  1906.     select FB_CFB_FILLRECT
  1907.     select FB_CFB_COPYAREA
  1908.     select FB_CFB_IMAGEBLIT
  1909.     ---help---
  1910.       Frame buffer driver for the Toshiba Mobile IO integrated as found
  1911.       on the Sharp SL-6000 series
  1912.  
  1913.       This driver is also available as a module ( = code which can be
  1914.       inserted and removed from the running kernel whenever you want). The
  1915.       module will be called tmiofb. If you want to compile it as a module,
  1916.       say M here and read <file:Documentation/kbuild/modules.txt>.
  1917.  
  1918.       If unsure, say N.
  1919.  
  1920. config FB_TMIO_ACCELL
  1921.     bool "tmiofb acceleration"
  1922.     depends on FB_TMIO
  1923.     default y
  1924.  
  1925. config FB_S3C2410
  1926.     tristate "S3C2410 LCD framebuffer support"
  1927.     depends on FB && ARCH_S3C2410
  1928.     select FB_CFB_FILLRECT
  1929.     select FB_CFB_COPYAREA
  1930.     select FB_CFB_IMAGEBLIT
  1931.     ---help---
  1932.       Frame buffer driver for the built-in LCD controller in the Samsung
  1933.       S3C2410 processor.
  1934.  
  1935.       This driver is also available as a module ( = code which can be
  1936.       inserted and removed from the running kernel whenever you want). The
  1937.       module will be called s3c2410fb. If you want to compile it as a module,
  1938.       say M here and read <file:Documentation/kbuild/modules.txt>.
  1939.  
  1940.       If unsure, say N.
  1941. config FB_S3C2410_DEBUG
  1942.     bool "S3C2410 lcd debug messages"
  1943.     depends on FB_S3C2410
  1944.     help
  1945.       Turn on debugging messages. Note that you can set/unset at run time
  1946.       through sysfs
  1947.  
  1948. config FB_SM501
  1949.     tristate "Silicon Motion SM501 framebuffer support"
  1950.     depends on FB && MFD_SM501
  1951.     select FB_CFB_FILLRECT
  1952.     select FB_CFB_COPYAREA
  1953.     select FB_CFB_IMAGEBLIT
  1954.     ---help---
  1955.       Frame buffer driver for the CRT and LCD controllers in the Silicon
  1956.       Motion SM501.
  1957.  
  1958.       This driver is also available as a module ( = code which can be
  1959.       inserted and removed from the running kernel whenever you want). The
  1960.       module will be called sm501fb. If you want to compile it as a module,
  1961.       say M here and read <file:Documentation/kbuild/modules.txt>.
  1962.  
  1963.       If unsure, say N.
  1964.  
  1965.  
  1966. config FB_PNX4008_DUM
  1967.     tristate "Display Update Module support on Philips PNX4008 board"
  1968.     depends on FB && ARCH_PNX4008
  1969.     ---help---
  1970.       Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1971.  
  1972. config FB_PNX4008_DUM_RGB
  1973.     tristate "RGB Framebuffer support on Philips PNX4008 board"
  1974.     depends on FB_PNX4008_DUM
  1975.     select FB_CFB_FILLRECT
  1976.     select FB_CFB_COPYAREA
  1977.     select FB_CFB_IMAGEBLIT
  1978.     ---help---
  1979.       Say Y here to enable support for PNX4008 RGB Framebuffer
  1980.  
  1981. config FB_IBM_GXT4500
  1982.     tristate "Framebuffer support for IBM GXT4500P adaptor"
  1983.     depends on FB && PPC
  1984.     select FB_CFB_FILLRECT
  1985.     select FB_CFB_COPYAREA
  1986.     select FB_CFB_IMAGEBLIT
  1987.     ---help---
  1988.       Say Y here to enable support for the IBM GXT4500P display
  1989.       adaptor, found on some IBM System P (pSeries) machines.
  1990.  
  1991. config FB_PS3
  1992.     tristate "PS3 GPU framebuffer driver"
  1993.     depends on FB && PS3_PS3AV
  1994.     select FB_SYS_FILLRECT
  1995.     select FB_SYS_COPYAREA
  1996.     select FB_SYS_IMAGEBLIT
  1997.     select FB_SYS_FOPS
  1998.     select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1999.     ---help---
  2000.       Include support for the virtual frame buffer in the PS3 platform.
  2001.  
  2002. config FB_PS3_DEFAULT_SIZE_M
  2003.     int "PS3 default frame buffer size (in MiB)"
  2004.     depends on FB_PS3
  2005.     default 9
  2006.     ---help---
  2007.       This is the default size (in MiB) of the virtual frame buffer in
  2008.       the PS3.
  2009.       The default value can be overridden on the kernel command line
  2010.       using the "ps3fb" option (e.g. "ps3fb=9M");
  2011.  
  2012. config FB_XILINX
  2013.     tristate "Xilinx frame buffer support"
  2014.     depends on FB && XILINX_VIRTEX
  2015.     select FB_CFB_FILLRECT
  2016.     select FB_CFB_COPYAREA
  2017.     select FB_CFB_IMAGEBLIT
  2018.     ---help---
  2019.       Include support for the Xilinx ML300/ML403 reference design
  2020.       framebuffer. ML300 carries a 640*480 LCD display on the board,
  2021.       ML403 uses a standard DB15 VGA connector.
  2022.  
  2023. config FB_COBALT
  2024.     tristate "Cobalt server LCD frame buffer support"
  2025.     depends on FB && MIPS_COBALT
  2026.  
  2027. config FB_SH7760
  2028.        bool "SH7760/SH7763 LCDC support"
  2029.        depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763)
  2030.        select FB_CFB_FILLRECT
  2031.        select FB_CFB_COPYAREA
  2032.        select FB_CFB_IMAGEBLIT
  2033.        help
  2034.          Support for the SH7760/SH7763 integrated (D)STN/TFT LCD Controller.
  2035.          Supports display resolutions up to 1024x1024 pixel, grayscale and
  2036.          color operation, with depths ranging from 1 bpp to 8 bpp monochrome
  2037.          and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
  2038.          panels <= 320 pixel horizontal resolution.
  2039.  
  2040. config FB_VIRTUAL
  2041.     tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  2042.     depends on FB
  2043.     select FB_SYS_FILLRECT
  2044.     select FB_SYS_COPYAREA
  2045.     select FB_SYS_IMAGEBLIT
  2046.     select FB_SYS_FOPS
  2047.     ---help---
  2048.       This is a `virtual' frame buffer device. It operates on a chunk of
  2049.       unswappable kernel memory instead of on the memory of a graphics
  2050.       board. This means you cannot see any output sent to this frame
  2051.       buffer device, while it does consume precious memory. The main use
  2052.       of this frame buffer device is testing and debugging the frame
  2053.       buffer subsystem. Do NOT enable it for normal systems! To protect
  2054.       the innocent, it has to be enabled explicitly at boot time using the
  2055.       kernel option `video=vfb:'.
  2056.  
  2057.       To compile this driver as a module, choose M here: the
  2058.       module will be called vfb. In order to load it, you must use
  2059.       the vfb_enable=1 option.
  2060.  
  2061.       If unsure, say N.
  2062.  
  2063. config XEN_FBDEV_FRONTEND
  2064.     tristate "Xen virtual frame buffer support"
  2065.     depends on FB && XEN
  2066.     select FB_SYS_FILLRECT
  2067.     select FB_SYS_COPYAREA
  2068.     select FB_SYS_IMAGEBLIT
  2069.     select FB_SYS_FOPS
  2070.     select FB_DEFERRED_IO
  2071.     default y
  2072.     help
  2073.       This driver implements the front-end of the Xen virtual
  2074.       frame buffer driver.  It communicates with a back-end
  2075.       in another domain.
  2076.  
  2077. config FB_METRONOME
  2078.     tristate "E-Ink Metronome/8track controller support"
  2079.     depends on FB
  2080.     select FB_SYS_FILLRECT
  2081.     select FB_SYS_COPYAREA
  2082.     select FB_SYS_IMAGEBLIT
  2083.     select FB_SYS_FOPS
  2084.     select FB_DEFERRED_IO
  2085.     help
  2086.       This driver implements support for the E-Ink Metronome
  2087.       controller. The pre-release name for this device was 8track
  2088.       and could also have been called by some vendors as PVI-nnnn.
  2089.  
  2090. config FB_MB862XX
  2091.     tristate "Fujitsu MB862xx GDC support"
  2092.     depends on FB
  2093.     select FB_CFB_FILLRECT
  2094.     select FB_CFB_COPYAREA
  2095.     select FB_CFB_IMAGEBLIT
  2096.     ---help---
  2097.       Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
  2098.  
  2099. config FB_MB862XX_PCI_GDC
  2100.     bool "Carmine/Coral-P(A) GDC"
  2101.     depends on PCI && FB_MB862XX
  2102.     ---help---
  2103.       This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
  2104.       PCI graphics controller devices.
  2105.  
  2106. config FB_MB862XX_LIME
  2107.     bool "Lime GDC"
  2108.     depends on FB_MB862XX
  2109.     depends on OF && !FB_MB862XX_PCI_GDC
  2110.     select FB_FOREIGN_ENDIAN
  2111.     select FB_LITTLE_ENDIAN
  2112.     ---help---
  2113.       Framebuffer support for Fujitsu Lime GDC on host CPU bus.
  2114.  
  2115. config FB_PRE_INIT_FB
  2116.     bool "Don't reinitialize, use bootloader's GDC/Display configuration"
  2117.     depends on FB_MB862XX_LIME
  2118.     ---help---
  2119.       Select this option if display contents should be inherited as set by
  2120.       the bootloader.
  2121.  
  2122. source "drivers/video/omap/Kconfig"
  2123.  
  2124. source "drivers/video/backlight/Kconfig"
  2125. source "drivers/video/display/Kconfig"
  2126.  
  2127. if VT
  2128.     source "drivers/video/console/Kconfig"
  2129. endif
  2130.  
  2131. if FB || SGI_NEWPORT_CONSOLE
  2132.     source "drivers/video/logo/Kconfig"
  2133. endif
  2134.  
  2135. endmenu
  2136.